home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
comm
/
tcp
/
ATCP_sdk_40_gc.lha
/
AmiTCP-4.0-gcc
/
src
/
netlib
/
dummy.c
< prev
next >
Wrap
C/C++ Source or Header
|
1995-03-23
|
520b
|
22 lines
static const char *RCS="$Id: dummy.c,v 4.1 1994/09/29 23:09:02 jraja Exp $";
/*
* dummy.c - unimplemented netdb functions
*
* Copyright © 1994 AmiTCP/IP Group,
* Network Solutions Development Inc.
* All rights reserved.
*/
#include <netdb.h>
#if !__SASC && !defined (NULL)
#define NULL ((void *) 0)
#endif
struct hostent *gethostent(void)
{ return NULL; }
struct netent *getnetent(void)
{ return NULL; }
struct servent *getservent(void)
{ return NULL; }
struct protoent *getprotoent(void)
{ return NULL; }